home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2001 May / SGI Freeware 2001 May - Disc 1.iso / dist / fw_mysql.idb / usr / freeware / share / mysql / binary-configure.z / binary-configure
Encoding:
Text File  |  1999-10-18  |  416 b   |  17 lines

  1. #!/bin/sh
  2. if test ! -x  ./scripts/mysql_install_db
  3. then
  4.   echo "I didn't find the script './scripts/mysql_install_db'."
  5.   echo "Please execute this script in the mysql distribution directory!"
  6.   exit 1;
  7. fi
  8.  
  9. ./scripts/mysql_install_db
  10. if [ $? = 0 ]
  11. then
  12.   echo "Starting the mysqld server.  You can test that it is up and running"
  13.   echo "with the command:"
  14.   echo "./bin/mysqladmin version"
  15.   ./bin/safe_mysqld &
  16. fi
  17.